diff options
| author | real-zephex <[email protected]> | 2024-04-12 08:48:35 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-04-12 08:48:35 +0530 |
| commit | aa6ee5cf96542132c4fea66a4bfc111621f4f049 (patch) | |
| tree | 2e2f0bf00eaf2822a5c77c1176d252b0e4d0835b /src/app/manga/[title]/page.jsx | |
| parent | added sharp npm package (diff) | |
| download | dramalama-aa6ee5cf96542132c4fea66a4bfc111621f4f049.tar.xz dramalama-aa6ee5cf96542132c4fea66a4bfc111621f4f049.zip | |
fixes: manga search is now fixed. removed the netlify card from the homepage because the vercel one is stable enough.
Diffstat (limited to 'src/app/manga/[title]/page.jsx')
| -rw-r--r-- | src/app/manga/[title]/page.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/manga/[title]/page.jsx b/src/app/manga/[title]/page.jsx index 1e846db..e4cc659 100644 --- a/src/app/manga/[title]/page.jsx +++ b/src/app/manga/[title]/page.jsx @@ -66,7 +66,7 @@ export default async function MangaInfo({ params }) { async function GetSearchedAnime(title) { const res = await fetch( - "https://consumet-api-di2e.onrender.com/meta/anilist-manga/" + title + "https://consumet-jade.vercel.app/meta/anilist-manga/" + title ); const data = await res.json(); return data; |